home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000021_news@columbia.edu _Wed Feb 14 10:43:40 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA29304 for <kermit.misc@watsun>; Wed, 14 Feb 1996 10:43:37 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA19555 for kermit.misc@watsun; Wed, 14 Feb 1996 10:43:33 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit drops core at SET LINE /dev/cua1
  8. Date: 14 Feb 1996 15:43:07 GMT
  9. Organization: Columbia University
  10. Lines: 42
  11. Message-ID: <4fsvub$j2s@apakabar.cc.columbia.edu>
  12. References: <4fr2nc$n0o@mozo.cc.purdue.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4fr2nc$n0o@mozo.cc.purdue.edu>,
  16. Branden Robinson <branden@ecn.purdue.edu> wrote:
  17. : I'm trying to run C-Kermit under Linux, but as soon as I type "set line
  18. : /dev/cua1", kermit gets a segmentation fault.  This is the correct line, as
  19. : evidenced by the fact that "echo ATDT" and a phone number redirected to
  20. : /dev/cua1 makes the modem dial.
  21. : I thought this might have something to do with the lock file put on
  22. : /dev/cua1, but both the compliation with the -DLINUXFSSTND and without it
  23. : yield the same result.  What is going on here?
  24. : Relevant hardware:
  25. :  Hayes Accura 14.4 + FAX internal on COM 2
  26. : Relevant software:
  27. :  Linux Debian 0.93R6, kernel 1.2.13, GCC 2.6.3, C-kermit 1.90
  28. C-Kermit 5A(190) was tested successfully on every known Linux variation at
  29. the time it was released (October 1994), but since then what is
  30. collectively known as Linux has been changing rapidly out from underneath
  31. us, thanks in large part to its numerous repackagers.  Most of the
  32. problems stem from the many and varied curses libraries; this is the first
  33. report I have heard of this nature.  You might try:
  34.  
  35.  1. The Debian C-Kermit distribution, put together and tested by the
  36.     Debian Project.  Maybe they linked it with different libraries than
  37.     you did:
  38.  
  39.       ftp://kermit.columbia.edu/kermit/linux/
  40.  
  41.  2. The 5A(192) Alpha not-yet-a-release:
  42.  
  43.       ftp://kermit.columbia.edu/kermit/test/
  44.  
  45.  3. Taking a debug log of a core-dumping session and sending the last
  46.     hundred lines or so to kermit@columbia.edu for analysis.  Also see if
  47.     you can get a backtrace from the core file to find out what routine it
  48.     was in when it faulted.  I don't know what the command for this is on
  49.     Linux -- locally I use "adb kermit core" and then "$c", where "kermit"
  50.     is Kermit's pathname and "core" is the core file's pathname.
  51.  
  52. - Frank